home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #5 / CD 5 (Black) - 2001.iso / K-CS.dcr / 00326.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  576 b   |  25 lines

  1. property StartTicks
  2.  
  3. on new me
  4.   cursor(4)
  5.   set StartTicks to the ticks
  6.   set the visible of sprite 62 to 0
  7.   set the visible of sprite 63 to 0
  8.   set the visible of sprite 64 to 0
  9.   set the visible of sprite 65 to 0
  10.   set the visible of sprite 66 to 0
  11.   set the visible of sprite 67 to 0
  12.   set the visible of sprite 68 to 0
  13.   set the visible of sprite 69 to 0
  14.   set the visible of sprite 70 to 0
  15. end
  16.  
  17. on exitFrame
  18.   set the visible of sprite (((the ticks - StartTicks) / 30) + 62) to 1
  19.   if the ticks > (StartTicks + 300) then
  20.     go(#next)
  21.   else
  22.     go(#loop)
  23.   end if
  24. end
  25.